home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / MLR.AWK < prev    next >
Text File  |  1990-02-08  |  168b  |  7 lines

  1. # delimit multiple line records and print the number of fields in each
  2.  
  3. BEGIN { RS = "" }
  4. { print NF, length($0), "----------------";print $0 }
  5. END { print NR }
  6.  
  7.